cargo: point to docs.rs and clean up
authorLuca BRUNO <luca.bruno@coreos.com>
Mon, 2 Aug 2021 15:17:31 +0000 (15:17 +0000)
committerColin Walters <walters@verbum.org>
Fri, 6 May 2022 16:53:56 +0000 (12:53 -0400)
This removes stale URLs, pointing to the auto-built docpages at
docs.rs and sorting manifest entries.

rust-bindings/rust/Cargo.toml

index 0282086f9302f50589da1fa9f8f5fc8fa14f743c..a19a99d7a0ef5314b9432a5951222770aeb1111a 100644 (file)
@@ -1,16 +1,14 @@
 [package]
-name = "ostree"
-version = "0.12.0"
 authors = ["Felix Krull"]
-edition = "2018"
-
-license = "MIT"
 description = "Rust bindings for libostree"
+documentation = "https://docs.rs/ostree"
+edition = "2018"
 keywords = ["ostree", "libostree"]
-
-documentation = "https://fkrull.gitlab.io/ostree-rs/ostree"
-repository = "https://gitlab.com/fkrull/ostree-rs"
+license = "MIT"
+name = "ostree"
 readme = "README.md"
+repository = "https://github.com/ostreedev/ostree-rs"
+version = "0.12.0"
 
 exclude = [
     "conf/**",
@@ -23,9 +21,6 @@ exclude = [
 [package.metadata.docs.rs]
 features = ["dox"]
 
-[badges.gitlab]
-repository = "fkrull/ostree-rs"
-
 [lib]
 name = "ostree"
 
@@ -33,17 +28,17 @@ name = "ostree"
 members = [".", "sys"]
 
 [dependencies]
-libc = "0.2"
 bitflags = "1.2.1"
-glib = "0.14.0"
+ffi = { package = "ostree-sys", path = "sys", version = "0.8.0" }
 gio = "0.14.0"
+gio-sys = "0.14.0"
+glib = "0.14.0"
 glib-sys = "0.14.0"
 gobject-sys = "0.14.0"
-gio-sys = "0.14.0"
+hex = "0.4.2"
+libc = "0.2"
 once_cell = "1.4.0"
-ffi = { package = "ostree-sys", path = "sys", version = "0.8.0" }
 radix64 = "0.6.2"
-hex = "0.4.2"
 thiserror = "1.0.20"
 
 [dev-dependencies]